Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@runner/logger

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@runner/logger

Simple task runner logger.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Task runner logger

build status npm version dependencies status devDependencies status Gitter RunKit

Installation

npm install @runner/logger

Usage

Add to the scope:

var logger = require('@runner/logger');

General output with different colors:

// 16:25:30.811 simple line
logger.info('simple line');

// 16:25:30.811 warning message
logger.warn('warning message');

// 16:25:30.811 error
logger.fail('error');

// print some complex data
logger.inspect(someObject);

Access colors instance:

var colors = logger.colors;

logger.info(
    colors.black.bgYellow('black text on yellow background')
);

Some task specific output:

var log = logger.wrap('webpack');

// 16:25:30.811 [webpack] build is ok
log.info('build is ok');

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

@runner/logger is released under the GPL-3.0 License.

Keywords

FAQs

Package last updated on 05 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc